Compare commits
6 commits
9d3bcbddf2
...
5810764093
| Author | SHA1 | Date | |
|---|---|---|---|
| 5810764093 | |||
| 809347f6e3 | |||
| 3aabaf251b | |||
| 8fc8788d5a | |||
| cc64d31305 | |||
| ad263cdc96 |
3 changed files with 29 additions and 12 deletions
24
flake.lock
generated
24
flake.lock
generated
|
|
@ -170,11 +170,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1722203588,
|
"lastModified": 1723015306,
|
||||||
"narHash": "sha256-91V5FMSQ4z9bkhTCf0f86Zjw0bh367daSf0mzCIW0vU=",
|
"narHash": "sha256-jQnFEtH20/OsDPpx71ntZzGdRlpXhUENSQCGTjn//NA=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "792757f643cedc13f02098d8ed506d82e19ec1da",
|
"rev": "b3d5ea65d88d67d4ec578ed11d4d2d51e3de525e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -206,11 +206,11 @@
|
||||||
},
|
},
|
||||||
"nixos-hardware": {
|
"nixos-hardware": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1722114937,
|
"lastModified": 1723310128,
|
||||||
"narHash": "sha256-MOZ9woPwdpFJcHx3wic2Mlw9aztdKjMnFT3FaeLzJkM=",
|
"narHash": "sha256-IiH8jG6PpR4h9TxSGMYh+2/gQiJW9MwehFvheSb5rPc=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixos-hardware",
|
"repo": "nixos-hardware",
|
||||||
"rev": "e67b60fb1b2c3aad2202d95b91d4c218cf2a4fdd",
|
"rev": "c54cf53e022b0b3c1d3b8207aa0f9b194c24f0cf",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -222,11 +222,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1722062969,
|
"lastModified": 1723175592,
|
||||||
"narHash": "sha256-QOS0ykELUmPbrrUGmegAUlpmUFznDQeR4q7rFhl8eQg=",
|
"narHash": "sha256-M0xJ3FbDUc4fRZ84dPGx5VvgFsOzds77KiBMW/mMTnI=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "b73c2221a46c13557b1b3be9c2070cc42cf01eb3",
|
"rev": "5e0ca22929f3342b19569b21b2f3462f053e497b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -275,11 +275,11 @@
|
||||||
"nixpkgs": "nixpkgs_2"
|
"nixpkgs": "nixpkgs_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1721989207,
|
"lastModified": 1722946882,
|
||||||
"narHash": "sha256-APKQeMMdh1O1W3OnxEvNfHNBiE4eRvEN6rosFr2dLHE=",
|
"narHash": "sha256-mxtnMye8gs82tdQbVC+g6v3aPOZlH150f9WyntHIkTg=",
|
||||||
"owner": "danth",
|
"owner": "danth",
|
||||||
"repo": "stylix",
|
"repo": "stylix",
|
||||||
"rev": "b9de20c76e8d5c13cf2304d23cf589803c311670",
|
"rev": "5853f1a8bd072f2ebabfc3de3973084353cf6f1e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,16 @@
|
||||||
|
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
services.printing.enable = true;
|
services.printing.enable = true;
|
||||||
|
services.printing.drivers = with pkgs; [
|
||||||
|
cups-bjnp # CUPS back-end for Canon printers
|
||||||
|
];
|
||||||
|
|
||||||
|
# Enable autodiscovery of network printers
|
||||||
|
services.avahi = {
|
||||||
|
enable = true;
|
||||||
|
nssmdns4 = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Enable sound with pipewire.
|
# Enable sound with pipewire.
|
||||||
#sound.enable = true;
|
#sound.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,8 @@
|
||||||
btop
|
btop
|
||||||
# AppImage is needed at least for cura slicer
|
# AppImage is needed at least for cura slicer
|
||||||
appimage-run
|
appimage-run
|
||||||
|
# Processes output of Nix commands to show helpful and pretty information
|
||||||
|
nix-output-monitor
|
||||||
|
|
||||||
# Terminal
|
# Terminal
|
||||||
alacritty
|
alacritty
|
||||||
|
|
@ -59,6 +61,8 @@
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
|
|
||||||
# Internet
|
# Internet
|
||||||
|
firefox
|
||||||
|
#ladybird
|
||||||
amfora # Gemini terminal browser
|
amfora # Gemini terminal browser
|
||||||
lagrange # Graphical Gemini client
|
lagrange # Graphical Gemini client
|
||||||
linphone
|
linphone
|
||||||
|
|
@ -119,6 +123,9 @@
|
||||||
p7zip
|
p7zip
|
||||||
xz
|
xz
|
||||||
|
|
||||||
|
# Others
|
||||||
|
sweethome3d.application # CAD for home
|
||||||
|
|
||||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
# # overrides. You can do that directly here, just don't forget the
|
# # overrides. You can do that directly here, just don't forget the
|
||||||
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue