Compare commits

...

4 commits

Author SHA1 Message Date
3ee306f5e3 i3: floating task planner quick add 2023-05-15 13:48:31 -07:00
3318719646 apps: install elementary-planner 2023-05-15 13:46:04 -07:00
502be7214c apps: temporarily display yubioath-flutter due to build failure
See https://github.com/NixOS/nixpkgs/issues/232092
2023-05-15 13:45:27 -07:00
51845831c0 flake.lock: Update
Flake lock file updates:

• Updated input 'home-manager':
    'github:nix-community/home-manager/6702b22b9805bc1879715d4111e3764cd4237aed' (2023-05-13)
  → 'github:nix-community/home-manager/c0deab0effd576e70343cb5df0c64428e0e0d010' (2023-05-15)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/897876e4c484f1e8f92009fd11b7d988a121a4e7' (2023-05-06)
  → 'github:nixos/nixpkgs/0470f36b02ef01d4f43c641bbf07020bcab71bf1' (2023-05-14)
2023-05-15 12:31:11 -07:00
4 changed files with 13 additions and 8 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1683989410, "lastModified": 1684157850,
"narHash": "sha256-puF/QsIkp4ch0sf6M5mNzbdZtYcq2MJHcKre9wJ3ZYo=", "narHash": "sha256-xGHTCgvAxO5CgAL6IAgE/VGRX2wob2Y+DPyqpXJ32oQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "6702b22b9805bc1879715d4111e3764cd4237aed", "rev": "c0deab0effd576e70343cb5df0c64428e0e0d010",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1683408522, "lastModified": 1684049129,
"narHash": "sha256-9kcPh6Uxo17a3kK3XCHhcWiV1Yu1kYj22RHiymUhMkU=", "narHash": "sha256-7WB9LpnPNAS8oI7hMoHeKLNhRX7k3CI9uWBRSfmOCCE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "897876e4c484f1e8f92009fd11b7d988a121a4e7", "rev": "0470f36b02ef01d4f43c641bbf07020bcab71bf1",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -33,6 +33,7 @@
# Applications # Applications
anki-bin anki-bin
discord discord
elementary-planner
gimp gimp
krita krita
inkscape inkscape

View file

@ -25,7 +25,7 @@ in
extraPackages = lib.mkOverride 0 []; extraPackages = lib.mkOverride 0 [];
}; };
}; };
udev.packages = [ pkgs.yubikey-personalization ]; #udev.packages = [ pkgs.yubikey-personalization ];
pcscd.enable = true; pcscd.enable = true;
gnome.gnome-keyring.enable = true; # For remembering nextcloud login, among other things gnome.gnome-keyring.enable = true; # For remembering nextcloud login, among other things
gvfs.enable = true; # For Trash gvfs.enable = true; # For Trash
@ -33,7 +33,7 @@ in
xdg.portal.enable = true; xdg.portal.enable = true;
environment.systemPackages = with pkgs; [ yubioath-flutter ]; #environment.systemPackages = with pkgs; [ yubioath-flutter ];
environment.sessionVariables = { environment.sessionVariables = {
# GTK Theme won't display with GTK4 (e.g. nautilus) otherwise # GTK Theme won't display with GTK4 (e.g. nautilus) otherwise

View file

@ -118,6 +118,10 @@ in with theme.colors; {
command = "floating enable"; command = "floating enable";
criteria = { title = "Drawing Panel"; }; criteria = { title = "Drawing Panel"; };
} }
{
command = "floating enable";
criteria = { title = "Task Planner - Quick Add"; };
}
]; ];
bars = []; bars = [];
}; };