aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-08-06ref(flake): tools and users packages are managed the same wayFranck Cuny1-0/+9
Configure the way we import these packages the same way, that way it's consistent and easy to use. Change-Id: I0e218f8fe9dd4cd2045bfee11c80de84ff769fe1 Reviewed-on: https://cl.fcuny.net/c/world/+/703 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
2022-07-02fix(new-lines): add or remove new lines where neededFranck Cuny5-5/+1
The pre-commit hook for new lines reported and correct a number of issues, so let's commit them now and after that we ca enable the hook for the repository. Change-Id: I5bb882d3c2cca870ef94301303f029acfb308740 Reviewed-on: https://cl.fcuny.net/c/world/+/592 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
2022-06-13delete reference to namespacesFranck Cuny6-27/+21
We don't need namespaces, a better abstraction is to use different buckets, as this provides a better abstraction to manage quotas and permissions.
2022-06-13github: don't install libpcapFranck Cuny1-3/+0
There's no need to install the libpcap-dev package for this repo.
2022-06-13github: fix workflow configurationFranck Cuny1-1/+1
There's no `cmd` directory in this repo.
2022-06-13github: add workflow configurationFranck Cuny1-0/+38
Let's ensure we test and build a binary when pushing to main and when we create a pull-request.
2022-06-13add stub commands for buckitFranck Cuny8-0/+130
Add the stub commands for the binary. Each command will be in its own file (with the exception of delete/un-delete). This will make it easier to navigate the code. We use `github/urfave/cli` for generating the sub commands, as the module is well documented and easy to use.
2022-06-13git: ignore the generated binary buckitFranck Cuny1-0/+1
2022-06-13initial documentationFranck Cuny2-1/+63
This is a high level description of what buckit is and how it works.
2022-06-13Add README.md, LICENSE.txtFranck Cuny2-0/+21
2022-06-11fix(notes): correct the URL to containerd-to-vm codeFranck Cuny1-1/+1
Change-Id: Ifcd265c515b0fc5e1999eed0d7594475e84a346a Reviewed-on: https://cl.fcuny.net/c/world/+/413 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
2022-06-11repo(containerd-to-vm): remove unneeded filesFranck Cuny2-40/+0
Change-Id: I4d229d0f4a9142e3bd427a8e63733426f5ca5bd9 Reviewed-on: https://cl.fcuny.net/c/world/+/412 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
2022-06-11publish firecracker metrics in a FIFOFranck Cuny1-2/+4
We add a new argument to the CLI to collect the path where we want to publish the firecracker metrics.
2022-06-11Makefile: install binaries and configsFranck Cuny1-6/+23
To help working on this project in the future, let's try to install dependencies and configurations with `make`. For now we know that we need the firecracker binary, the CNI configuration and the CNI plugin for TAP.
2022-06-11rename the variable for the linux kernelFranck Cuny1-7/+7
2022-06-11c2vm: fix kernel boot optionsFranck Cuny1-1/+1
By specifying these options we can speed up the boot process from 0.9 second to 0.15 seconds. Without these options, the linux kernel spends a few milliseconds probing the device, which is useless in our context (see https://github.com/firecracker-microvm/firecracker/blob/main/docs/api_requests/actions.md#intel-and-amd-only-sendctrlaltdel)
2022-06-11readme: update instructionsFranck Cuny1-0/+16
2022-06-11boot the VMFranck Cuny3-4/+256
The binary needs a few more arguments: the path to the firecracker binary, the path to a linux kernel. Using the image that was generated, we can now boot the VM with firecracker. This will rely on a CNI configuration to create the network, and will use the provided kernel to boot.
2022-06-11hack: firecracker binary and CNI configurationFranck Cuny3-0/+35
Add a target to the Makefile to download a version of firecracker and extract it under the repository hack/firecracker. We will then use this binary for running the VM. Add a CNI configuration under hack/cni. This configuration will need to be copied to `/etc/cni/conf.d`.
2022-06-11git: ignore binaryFranck Cuny1-0/+1
2022-06-11add MakefileFranck Cuny1-0/+3
2022-06-11check for errorFranck Cuny1-0/+3
When reading the configuration for the container, if there's an error we return the error to the caller.
2022-06-11github: add workflowsFranck Cuny1-0/+35
Add a workflows to perform some validation when pushing new commits.
2022-06-11inject a script for initFranck Cuny1-0/+43
Once we will be ready to boot our VM, we will need an init script in place. For this, we create a simple shell script which we populate using the environment variables and command extracted from the container. The init script is stored in /init.sh within the new image, and we will configure the boot parameter to find it there.
2022-06-11extract layers to a mounted loop deviceFranck Cuny3-1/+128
We create a loop device by pre-allocating space to a file on disk. This file is then converted to an ext4 partition, which we mount to a temporary path on the host. Once this is done, we extract all the layers from the given container on that mounted path. We also add a few extra files to the image (`/etc/hosts` and `/etc/resolv.conf`). When we're done extracting and writing, we run resize2fs in order to resize the image to a more reasonable size.
2022-06-11add a lease to the Go contextFranck Cuny1-0/+6
This will ensure that our container will not be deleted while we work on it. In addition, a default expiry of 24 hours will be set on it once the lease is released (once the program is completed). See [1] for more details. [1] https://github.com/containerd/containerd/blob/261c107ffc4ff681bc73988f64e3f60c32233b37/docs/garbage-collection.md Signed-off-by: Franck Cuny <franck@fcuny.net>
2022-06-11pull a container into a namespaceFranck Cuny4-0/+975
Pull an image provided as an argument to the program. We're only interested in images for Linux/amd64 at the moment. We setup a default namespace for containerd named `c2vm`. Images that will be pulled by containerd will be stored inside that namespace. Once the program is build it can be run like this: ``` ; sudo ./c2vm -container docker.io/library/redis:latest pulled docker.io/library/redis:latest (38667897 bytes) ``` And the image is indeed in the namespace: ``` ; sudo ctr -n c2vm images ls -q docker.io/library/redis:latest ```
2022-06-11doc: update READMEFranck Cuny2-1/+15
2022-06-11Add README.md, LICENSE.txtFranck Cuny2-0/+21
2022-06-10fix(scripts): no need to create tags when deploying to fly.ioFranck Cuny2-16/+4
I don't need tags in this repository. There's no need to create them after a deploy. Before stopping the fly.io agent, checks that we're in the CI environment. Change-Id: I6208b70023c6ae74d58e535e24b44221956dbe63 Reviewed-on: https://cl.fcuny.net/c/world/+/408 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
2022-06-09fix(blog): set the correct URL to my git serverFranck Cuny1-1/+1
Change-Id: I0911c07d5ab0e17a09e587ba4507d0202f6c7ff3 Reviewed-on: https://cl.fcuny.net/c/world/+/364 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
2022-05-29fix(fcuny/monkey): remove unneeded filesFranck Cuny2-21/+0
Change-Id: If26166f29f9b519b87e288b514d2c603ca9b4413
2022-05-25ref(notes): drop flake.nixFranck Cuny5-88/+46
There's no need to have a flake.nix for the notes, we can use the same mechanism as for the blog and resume. Add a README so I remember how to use this in the future.
2022-05-25ref(notes): don't rely on git for modified dateFranck Cuny1-1/+0
This is needed in order to replace the flake.nix with a default.nix, like I did for the blog earlier.
2022-05-25ref(resume): remove flake.nixFranck Cuny4-71/+35
Integrate the resume with the rest of the repository, as I did for the blog in the previous commit. Added a script to copy the resume in the static directory of the blog.
2022-05-25ref(blog): drop the flake configurationFranck Cuny5-89/+39
There's no need to have multiple `flake.nix` in the repository. Make the blog part of the flake configuration at the root level of the repository, delete the one in the blog, and update the documentation.
2022-05-25ref(blog): drop the `enableGitInfo` optionFranck Cuny1-1/+0
This is not going to work with the next change, so I'm just going to drop it.
2022-05-23feat(resume): rename readme.org to resume.orgFranck Cuny3-40/+44
I can now have a readme.org with instructions on how to generate the resume (because I'll obviously forget again).
2022-05-23feat(resume): set the version using the dateFranck Cuny1-1/+2
2022-05-23ref(resume): remove unneeded files for my resumeFranck Cuny3-12/+0
In a monorepo setup, the CI configuration is not used at this level of the tree, and the gitignore/envrc are not relevant.
2022-05-23ref(notes): remove unneeded files for my notesFranck Cuny3-21/+0
In a monorepo setup, the CI configuration is not used at this level of the tree, and the gitignore/envrc are not relevant.
2022-05-23ref(blog): remove unneeded files for the blogFranck Cuny4-28/+1
In a monorepo setup, the CI configuration is not used at this level of the tree, and the gitignore/envrc are not relevant.
2022-05-13remove unused tex styleFranck Cuny1-106/+0
2022-05-11delete MakefileFranck Cuny1-27/+0
This is not needed anymore.
2022-05-11nix: add more contentFranck Cuny1-0/+4
2022-05-11add drone configurationFranck Cuny1-0/+18
2022-05-11add flake supportFranck Cuny3-0/+89
2022-05-11add a script to deploy the siteFranck Cuny2-8/+15
Instead of using the Makefile, move the content to a script. This will be executed by drone later.
2022-05-11remove GitHub action workflowFranck Cuny1-18/+0
2022-05-11remove atom from the list of outputsFranck Cuny1-9/+1
2022-05-11sign the drone configurationFranck Cuny1-0/+6
2022-05-10update gitignoreFranck Cuny1-0/+1
2022-05-10deploy: stop the flyctl agent at the endFranck Cuny1-0/+2
I ran into the following issue: ``` The agent failed to start with the following error log: 162022/05/11 02:38:11.375368 srv another instance of the agent is already running ``` I'm not sure this is the right approach, but it's a start.
2022-05-10delete MakefileFranck Cuny1-19/+0
This is not needed anymore, I'm not running it in a container, and the build is done remotely by fly when I do a build.
2022-05-10who knowsFranck Cuny1-1/+1
2022-05-10i don't think it will workFranck Cuny2-9/+11
2022-05-10another tryFranck Cuny1-0/+21
2022-05-10one more timeFranck Cuny2-3/+2
2022-05-10maybe this timeFranck Cuny1-1/+1
2022-05-10I'll get it right at some pointFranck Cuny1-1/+1
2022-05-10fix name of the branch for doneFranck Cuny2-19/+1
Delete the workflow for GitHub actions.
2022-05-10add a basic READMEFranck Cuny1-0/+8
2022-05-10add drone configuration and cleanup nixFranck Cuny4-14/+54
Add a drone configuration to run the deploy on a push to the main branch. Cleanup the nix configuration to only keep support for `nix run` (which will run the hugo server).
2022-05-10nix: add tagsFranck Cuny1-0/+1
2022-05-10go: replace lsp-mode with eglotFranck Cuny1-66/+15
2022-05-10nix: start documenting what I'm learningFranck Cuny1-0/+21
2022-05-08simplify the buildFranck Cuny4-16/+41
Running `nix build` is enough to generate the file `resume.html`. It will be created in the `result` directory automatically. The configuration for the build is also updated to run `nix build`
2022-05-07drone: add configurationFranck Cuny2-0/+9
2022-05-01static: add my resume as a static pageFranck Cuny1-0/+209
2022-05-01config: remove the link to the feedFranck Cuny1-8/+1
It's already in the footer.
2022-05-01scripts: actually deploy to flyFranck Cuny1-0/+2
2022-05-01content: remove some notesFranck Cuny4-1159/+0
They are at https://notes.fcuny.net now.
2022-05-01build: slowly moving to nixFranck Cuny5-16/+57
Add a `flake.nix' configuration to pull the required dependencies and run the server. Remove a few targets from the Makefile and move the deployment part to a script.
2022-04-09add a few more modules to home/ and delete stuffFranck Cuny18-648/+0
2022-04-08delete all CLI modulesFranck Cuny8-197/+0
Everything is under home/ now
2022-04-08delete all devel modulesFranck Cuny4-28/+1
They are all under home/ now
2022-04-08remove old 'trusted' modulesFranck Cuny7-151/+1
All of them are now under home/
2022-04-08home: add more configurations for home-managerFranck Cuny1-4/+0
2022-04-05sound: add a new moduleFranck Cuny1-2/+1
This is the start of yet another refactoring of the configuration. Sound configuration is moving to a module, and we enable it as needed at the host level. It takes care of configuring pipewire and install the packages needed too. This module is applied to the laptop and the desktop.
2022-04-05waybar: fix colors for the workspacesFranck Cuny1-9/+9
2022-04-03content: update PCIe docFranck Cuny1-1/+4
2022-04-03site: remove unnecessary elementsFranck Cuny8-116/+40
2022-04-03ncmpcpp: delete configurationFranck Cuny1-19/+0
I don't use this program anymore.
2022-04-03home-manager: add `isTrusted`Franck Cuny8-3/+3
Install and configure some programs only on trusted machines. On trusted machines, my mails, GPG and a few other things are configured. A machine where this is not needed on a regular basis to get things done don't need that much information. Also rename `desktop/trust` to `trusted`, in case we want these packages on a host that is not a desktop, and `trusted` is a better description.
2022-04-03firefox: set duckduckgo as default search engineFranck Cuny1-9/+20
This is not really working, need to figure this out.
2022-04-03set the music directory based on host's nameFranck Cuny1-4/+8
2022-04-03rename `desktop` to `isDesktop`Franck Cuny3-6/+7
The variable is used to define the kind of machine we're managing. `isDesktop` is a bit more descriptive. We import `devel` for all machines, and we fine tune which packages we want to install based on the value of `isDesktop`.
2022-04-03email: use afew to filter emailsFranck Cuny1-25/+17
This is still not working as I want, will need more iteration.
2022-04-03simplify multimedia for the desktopFranck Cuny8-119/+16
I don't need to have systemd units to synchronize medias from a desktop to the NAS: I'll download all the medias on the NAS directly. I don't need to have a module for each type of media, there's not enough configuration to justify that complexity. I also don't need anymore mpd and co. as I'm using navidrome to host the music on the NAS and sublime-music to listen to it on the desktop.
2022-04-01consolidate configuration for music curationFranck Cuny3-18/+14
2022-03-31swaybar: simplify colorsFranck Cuny1-18/+17
2022-03-31beets: how to manage soundtracksFranck Cuny1-2/+1
2022-03-31beets: more configurationFranck Cuny1-2/+17
2022-03-30beets: fix configuration + discogsFranck Cuny1-4/+5
2022-03-30beets: a few configuration changesFranck Cuny1-2/+6
2022-03-30beets: tool to curate my music collectionFranck Cuny2-2/+27
2022-03-28delete some contentFranck Cuny7-238/+0
2022-03-28convert blog to notesFranck Cuny11-116/+117
Separating the two sites so I can customize them differently.
2022-03-25alacritty: use the default colorsFranck Cuny2-53/+0
2022-03-25shell: switch from zsh to fishFranck Cuny3-50/+11
why not ?
2022-03-14sway: switch back to waybarFranck Cuny2-72/+132
Get rid of icons, use plain text with different colors depending on the state.
2022-03-14theme: dont' set alacritty bg and fgFranck Cuny1-3/+0
2022-03-12desktop: element and themeFranck Cuny1-0/+4
2022-03-12terminal: nixfmtFranck Cuny1-10/+4
2022-03-12wofi: color + nixfmtFranck Cuny1-4/+2
2022-03-12notification: fix timeout and documentFranck Cuny1-8/+8
2022-03-12devel: add more packagesFranck Cuny1-1/+1
2022-03-10wm: ensure element is assigned to space #4Franck Cuny1-0/+1
2022-03-09sway: formatting, colors, wlogoutFranck Cuny1-44/+75
2022-03-09go: ensure GOBIN is in PATHFranck Cuny1-1/+3
2022-03-08nas: backup photos and musicFranck Cuny1-0/+106
Instead of rsync-ing these folders to a GCS bucket, I should instead do a backup. If I screw up something, the content will be sync-ed, and I won't be able to restore it. It's better (maybe more expensive, but that's OK) to keep snapshots and be able to restore.
2022-03-05backups: do the backup over sshFranck Cuny1-7/+7
We're using ssh instead of the rest server, we're also pushing them to a different repo, where I don't need to be root.
2022-03-05git: sign with GPG only when one desktopFranck Cuny3-10/+30
Move the configuration for git that requires the signing to pass, and use the `pass-git-helper` to manage the secrets.
2022-03-05git: nixfmtFranck Cuny1-3/+1
2022-03-04scan-print: tools for scanning and printingFranck Cuny2-0/+6
2022-03-04home: switch to emacsclient for EDITORFranck Cuny1-1/+2
2022-03-04devel: install nixfmtFranck Cuny1-1/+1
Useful to format modules consistently.
2022-03-04nix: format the moduleFranck Cuny1-10/+3
2022-03-04ssh: new module, and load it for my userFranck Cuny2-1/+19
2022-03-04nix: format the bufferFranck Cuny1-14/+3
2022-03-02zsh: move the configuration inlineFranck Cuny2-31/+30
I don't have a lot of things I care about for zsh, I can inline everything.
2022-02-27firefox: a few more settingsFranck Cuny1-4/+11
2022-02-27i3status: clean up formattingFranck Cuny1-2/+2
2022-02-27firefox: add plugins and configurationsFranck Cuny1-0/+29
2022-02-27xdg: let's drop the mime configurationFranck Cuny1-13/+0
Let's rely on the default for now.
2022-02-27software: drop nautilus, add a few more thingsFranck Cuny1-1/+13
Replace nautilus with pcmanfm, which is more than enough for my needs (I still can't open correctly images / PDF with nautilus, I don't care why). Add a few more packages (seahorse, easyeffects) to improve usability of the desktop.
2022-02-27sway: import systemd environments on startupFranck Cuny1-0/+3
2022-02-27sway: assign applications to workspacesFranck Cuny1-0/+5
2022-02-27mako: run with systemdFranck Cuny1-5/+16
2022-02-27devel: install LSP for nixFranck Cuny1-0/+1
2022-02-27mako: add notification daemonFranck Cuny2-0/+16
2022-02-27wofi: tweak the UIFranck Cuny2-43/+26
2022-02-27swaylock: don't display the keyboard layoutFranck Cuny1-0/+1
2022-02-27sway: re-organize the modulesFranck Cuny7-42/+25
Rename 'sway' to 'wm' to make it more generic; rename some of the other modules (e.g. 'wofi' to 'launcher'), for the same reason.
2022-02-24backups: initial configurationFranck Cuny2-0/+17
2022-02-24sway: let's drop this - I don't know what it doesFranck Cuny1-1/+0
I can see that later on.
2022-02-24polybar: delete configurationFranck Cuny11-143/+0
This is not needed anymore, we can remove it completely.
2022-02-22swaylock: background colorFranck Cuny1-2/+1
2022-02-22emacs: install aspell correctlyFranck Cuny1-4/+2
2022-02-21dev: a few more packages to installFranck Cuny1-0/+5
2022-02-21ssh: authenticate only using ssh keyFranck Cuny1-0/+7
2022-02-21devel: create new directory for devel modulesFranck Cuny5-2/+16
Add python, and move go from the cli modules. Install these modules only if we're a "desktop".
2022-02-21syncthing: enable the moduleFranck Cuny1-0/+1
2022-02-21emacs: add aspell and dictionariesFranck Cuny2-0/+11
2022-02-21terminal: live reload of alacritty's configurationFranck Cuny1-0/+1
2022-02-21sway: remove environment variablesFranck Cuny1-9/+0
This *might* not be needed.
2022-02-21sway: adjust scaling for aptosFranck Cuny1-1/+1
2022-02-21sway: switch to i3status and set keybindingsFranck Cuny3-104/+96
Replace waybar with i3status. I keep running into issues with waybar (does not start, for example), and i3 status is a bit easier to configure. Set some keybindings so I can adjust volume and brightness.
2022-02-21terminal: a few more tweaks to alacrittyFranck Cuny1-1/+10
2022-02-21go: let's hide $GOPATHFranck Cuny1-1/+1
2022-02-21sway: configure scaling factor for aptosFranck Cuny1-0/+4
2022-02-21sway: set some environment variablesFranck Cuny1-0/+10
Without these variables, I can't get pinentry to pop up when needed, and firefox stays blurry.
2022-02-21videos: fix typoFranck Cuny1-1/+1
2022-02-21pass: use upstream synchroniser serviceFranck Cuny1-27/+3
I don't have to write / maintain my own!
2022-02-21mpd: fix path to ncmpcpp configurationFranck Cuny1-1/+1
2022-02-18media: reorganize in multiples modulesFranck Cuny7-3/+86
Add two new modules to synchronize videos and musics to the NAS.
2022-02-18gammastep: will need to figure this out laterFranck Cuny1-2/+3
2022-02-18waybar: a few more adjustments.Franck Cuny1-2/+3
2022-02-18gammastep: use lat/long from localeFranck Cuny1-2/+2
2022-02-18swaylock: unsure if I'm doing the right thing hereFranck Cuny2-38/+11
2022-02-18waybar: first round of customizationsFranck Cuny1-22/+94
2022-02-18sway: add default fontFranck Cuny1-0/+4
2022-02-18xdg: add default applicationFranck Cuny1-0/+13
2022-02-18pass: minor adjustmentsFranck Cuny1-4/+9
2022-02-17mpd: only start mpd when neededFranck Cuny2-0/+37
2022-02-17wofi: improve the readability of the windowFranck Cuny1-6/+64
2022-02-17go: set GOBIN and GOPRIVATE variablesFranck Cuny1-0/+2
Binaries are going to $HOME/.local/bin.go and we want to make sure that modules coming from git.fcuny.net and golang.fcuny.net are considered private.
2022-02-16sway: install all the required packagesFranck Cuny1-1/+0
2022-02-16home-manager: move activate logic in users' configFranck Cuny1-0/+2
2022-02-16mpd: add configuration to the module itselfFranck Cuny1-1/+19
When running `mpd` from nixos, it ignores the configuration under `$HOME/.config/mpd/config`. Instead, we need to pass the proper configuration as `extraConfig` to the module itself.
2022-02-16xdg: use actual home directory pathFranck Cuny2-35/+21
Don't use `$HOME`, otherwise when calling `config.xdg-dir.music` in other modules, they can complain that the value is not an absolute path.
2022-02-16swaybar: keep it simple for nowFranck Cuny1-31/+22
2022-02-16home-manager: install a few more packagesFranck Cuny1-0/+2
2022-02-16layout: improve readability and remove /notesFranck Cuny6-96/+110
The notes will be moved to a different site/repository, with their own style. Update the index page to make it more readable. Make the header more visible with fewer links. Add a footer, with links using SVG icons.
2022-02-14waybar: fix the configuration for the clockFranck Cuny1-2/+2
2022-02-14waybar: initial customizationFranck Cuny1-0/+30
2022-02-14sway: obviously, keyboard is an input ...Franck Cuny1-1/+5
2022-02-14sway: set keyboard optionsFranck Cuny1-1/+5
Set the keyboard layouts to be US and FR. Map capslock to control, and switch between layouts using shift+caps.
2022-02-14email: multiple fixesFranck Cuny1-8/+15
Update the configuration for mbsync so that the name of the mail's folder matches the one from our back (fastmail -> Fastmail). Some changes to the pre-fetch script and move it into the notmuch folder. Set the environment variables for the systemd unit.
2022-02-13email: add initial email configurationFranck Cuny2-0/+72
Configure the account and pull with mbsync. We run notmuch after the pull.
2022-02-13password-store: use the correct variableFranck Cuny1-2/+2
2022-02-13password-store: set location in the environmentFranck Cuny1-3/+4
Set the location for the password-store's store in the environment variable of the unit. Without that environment variable, the program assumes the store is under '$HOME/.password-store'.
2022-02-13sway: add a few more packagesFranck Cuny1-2/+3
2022-02-13emacs: pull community's overlayFranck Cuny1-6/+3
We need the community overlay to get the pure GTK port of Emacs for now.
2022-02-13alacritty: switch back to white backgroundFranck Cuny1-0/+6
I can't stand the dark background.
2022-02-13emacs: let's go!Franck Cuny2-0/+11
2022-02-13sway: set the scaling factorFranck Cuny1-0/+5
2022-02-13yt-dlp: don't install unstableFranck Cuny1-1/+1
2022-02-13yt-dlp: correct configFranck Cuny2-1/+26
2022-02-13home-manager: typo in git moduleFranck Cuny1-0/+2
2022-02-13home-manager: install yt-dlpFranck Cuny3-0/+11
2022-02-13gpg: set default keyFranck Cuny2-0/+7
And use the default key for signing with git.
2022-02-13i3: delete and let's switch over to sway/waylandFranck Cuny2-58/+0
2022-02-13sway: add gammastep configurationFranck Cuny2-0/+14
Similar to redshift, but for wayland.
2022-02-13sway: need custom unit file for swayidleFranck Cuny1-6/+17
I don't have access to https://github.com/nix-community/home-manager/pull/2610 yet.
2022-02-13sway: run swayidle and waybar via systemdFranck Cuny3-9/+21
2022-02-13home-manager: the clown carFranck Cuny1-1/+1
2022-02-13home-manager: typoFranck Cuny1-1/+1
2022-02-13sway: adjust configurationFranck Cuny5-45/+59
Create a new directory to have all things related to sway. Add some extra configuration for wofi.
2022-02-13cli: this is not workingFranck Cuny1-2/+0
2022-02-13sway: first attempt at configuring swayFranck Cuny3-2/+45
Let's switch right away to sway instead, now that there's an emacs package to support wayland.
2022-02-13hosts: install linux perf tools for the hostFranck Cuny2-13/+0
2022-02-13home-manager: fix package nameFranck Cuny1-1/+1
2022-02-13home-manager: install perf related toolsFranck Cuny2-0/+15
bcc, perf, etc
2022-02-13home-manager: install pavucontrolFranck Cuny1-0/+1
This is needed to control the volume.
2022-02-12home-manager: add redshiftFranck Cuny2-2/+16
2022-02-12home-manager: fix a few typosFranck Cuny1-2/+2
2022-02-12home-manager: push password-store to gitFranck Cuny1-0/+28
Add a systemd timer and an unit to push the content of the password store to our git remote.
2022-02-12home-manager: typoFranck Cuny1-1/+1
I need something to help with lint/validation ...
2022-02-12home-manager: git credential helpers configurationFranck Cuny1-0/+9
2022-02-12hosts: load services at the host levelFranck Cuny2-11/+1
These services are not configured at the user level, but at the host level. We might need a better separation in the future, in case I don't use xserver for example.
2022-02-12home-manager: delete keyring moduleFranck Cuny2-6/+0
This needs to be setup at the host level.
2022-02-12move configurations and modules aroundFranck Cuny7-2/+54
Sorry, this is a mess, hopefully the last one.
2022-02-12configs: move personal configuration with userFranck Cuny17-6/+219
2022-02-12home-manager: re-organize configuration for myselfFranck Cuny14-37/+65
2022-02-12home-manager: remove trailing slashFranck Cuny1-1/+1
2022-02-12home-manager: start to organize user configurationFranck Cuny1-1/+1
2022-02-10home-manager: fix imports for passFranck Cuny1-1/+1
2022-02-10home-manager: install password-storeFranck Cuny2-0/+9
2022-02-10users: more cleanupFranck Cuny1-1/+0
2022-02-10users: we need to include desktop tooFranck Cuny1-0/+1
2022-02-10users: rename common.nix to default.nixFranck Cuny1-0/+0
We will use the variable 'destkop' to decide what to install after that.
2022-02-10users: enable home-manager for myselfFranck Cuny1-0/+3
2022-02-10home-manager: set the hostnameFranck Cuny1-2/+2
2022-02-10home-manager: fix mpd configFranck Cuny1-4/+9
2022-02-10home-manager: mpd and ncmpcpp configurationFranck Cuny2-0/+11
2022-02-10home-manager: fix typo for polybarFranck Cuny1-1/+1
2022-02-10home-manager: fix the script for polybarFranck Cuny1-1/+1
The path was incorrectly set up.
2022-02-09home-manager: fix GTK configurationFranck Cuny1-2/+5
2022-02-09home-manager: fix configuration for i3/polybarFranck Cuny1-13/+5
At least the correct configuration is put on disk and the startup script is correct.
2022-02-09home-manager: let's try to configure polybarFranck Cuny1-11/+20
There's a few things missing (my binaries for the wifi and battery, at a minimum), but that's fine for now.
2022-02-09desktop: configure GTKFranck Cuny1-0/+30
2022-02-09alacritty: more settingsFranck Cuny1-1/+11
2022-02-09git: update list of things to ignoreFranck Cuny1-1/+21
2022-02-09home-manager: fix zsh configFranck Cuny1-1/+1
2022-02-09home-manager: fix path for zsh.nixFranck Cuny1-0/+21
2022-02-09home-manager: expand zsh configurationFranck Cuny1-0/+1
2022-02-09users: move users configuration to systemsFranck Cuny1-19/+0
2022-02-09home-manager: rofi uses alacrittyFranck Cuny1-1/+1
2022-02-09home-manager: more typos ..Franck Cuny1-2/+2
2022-02-09home-manager: update xdg configurationFranck Cuny1-0/+13
2022-02-09home-manager: i3 + rofi configurationFranck Cuny1-1/+1
2022-02-09home-manager: add mod for i3Franck Cuny1-1/+3
2022-02-09home-manager: typoFranck Cuny1-1/+1
2022-02-09home-manager: i3 configurationFranck Cuny1-0/+6
Add alacritty and use rofi for the menu.
2022-02-09home-manager: add polybar to i3Franck Cuny1-0/+16
2022-02-09home-manager: add tmux configurationFranck Cuny2-0/+14
2022-02-09home-manager: fix one more typoFranck Cuny1-1/+1
2022-02-09home-manager: fix some typosFranck Cuny2-1/+1
2022-02-09home-manager: add more common programsFranck Cuny3-4/+30
Add git configuration and move go to its own module.